home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 5
/
Amiga Tools 5.iso
/
tools
/
developer-tools
/
guis
/
gadutil
/
docs
/
autodocs
/
42.gu_replyimsg
< prev
next >
Wrap
Text File
|
1996-07-16
|
1KB
|
33 lines
gadutil.library/GU_ReplyIMsg gadutil.library/GU_ReplyIMsg
NAME
GU_ReplyIMsg -- Reply a message obtained with GU_GetIMsg().
SYNOPSIS
GU_ReplyIMsg(imsg)
A1
VOID GU_ReplyIMsg(struct IntuiMessage *);
FUNCTION
Return a modified IntuiMessage obtained with GU_GetIMsg(). If you
use GU_GetIMsg(), use this function where you would normally have
used exec/ReplyIMsg() or gadtools/GT_ReplyIMsg(). You may safely
call this function with a NULL pointer (nothing will be done).
INPUTS
imsg - a modified IntuiMessage obtained with GT_GetIMsg(), or NULL
in which case this function does nothing.
NOTES
When using GadUtil, you MUST explicitly GU_ReplyIMsg() all messages
you receive. You cannot depend on CloseWindow() to handle messages
you have not replied.
Starting with V39, this function actually expects a pointer to an
ExtIntuiMessage structure, but the prototype was not changed for
source code compatibility with older software.
SEE ALSO
GU_GetIMsg()